home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / SourceCode / AdobeExamples / NX_Patterns / Patterns_main.m < prev    next >
Text File  |  1992-12-19  |  270b  |  15 lines

  1. /*
  2.  *     Generated by the NeXT Interface Builder.
  3.  */
  4.  
  5. #import <stdlib.h>
  6. #import "PatternApp.h"
  7.  
  8. void main(int argc, char *argv[]) {
  9.     NXApp = [PatternApp new];
  10.     [NXApp loadNibSection:"Patterns.nib" owner:NXApp];
  11.     [NXApp run];
  12.     [NXApp free];
  13.     exit(0);
  14. }
  15.